type github.com/klauspost/compress/flate.huffmanBitWriter

31 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L110: 	w *huffmanBitWriter
		huffman_bit_writer.go#L97: type huffmanBitWriter struct {
		huffman_bit_writer.go#L145: func newHuffmanBitWriter(w io.Writer) *huffmanBitWriter {
		huffman_bit_writer.go#L146: 	return &huffmanBitWriter{
		huffman_bit_writer.go#L155: func (w *huffmanBitWriter) reset(writer io.Writer) {
		huffman_bit_writer.go#L162: func (w *huffmanBitWriter) canReuse(t *tokens) (ok bool) {
		huffman_bit_writer.go#L191: func (w *huffmanBitWriter) flush() {
		huffman_bit_writer.go#L217: func (w *huffmanBitWriter) write(b []byte) {
		huffman_bit_writer.go#L224: func (w *huffmanBitWriter) writeBits(b int32, nb uint8) {
		huffman_bit_writer.go#L232: func (w *huffmanBitWriter) writeBytes(bytes []byte) {
		huffman_bit_writer.go#L266: func (w *huffmanBitWriter) generateCodegen(numLiterals int, numOffsets int, litEnc, offEnc *huffmanEncoder) {
		huffman_bit_writer.go#L353: func (w *huffmanBitWriter) codegens() int {
		huffman_bit_writer.go#L361: func (w *huffmanBitWriter) headerSize() (size, numCodegens int) {
		huffman_bit_writer.go#L374: func (w *huffmanBitWriter) dynamicReuseSize(litEnc, offEnc *huffmanEncoder) (size int) {
		huffman_bit_writer.go#L381: func (w *huffmanBitWriter) dynamicSize(litEnc, offEnc *huffmanEncoder, extraBits int) (size, numCodegens int) {
		huffman_bit_writer.go#L392: func (w *huffmanBitWriter) extraBitSize() int {
		huffman_bit_writer.go#L404: func (w *huffmanBitWriter) fixedSize(extraBits int) int {
		huffman_bit_writer.go#L414: func (w *huffmanBitWriter) storedSize(in []byte) (int, bool) {
		huffman_bit_writer.go#L424: func (w *huffmanBitWriter) writeCode(c hcode) {
		huffman_bit_writer.go#L434: func (w *huffmanBitWriter) writeOutBits() {
		huffman_bit_writer.go#L461: func (w *huffmanBitWriter) writeDynamicHeader(numLiterals int, numOffsets int, numCodegens int, isEof bool) {
		huffman_bit_writer.go#L505: func (w *huffmanBitWriter) writeStoredHeader(length int, isEof bool) {
		huffman_bit_writer.go#L534: func (w *huffmanBitWriter) writeFixedHeader(isEof bool) {
		huffman_bit_writer.go#L557: func (w *huffmanBitWriter) writeBlock(tokens *tokens, eof bool, input []byte) {
		huffman_bit_writer.go#L623: func (w *huffmanBitWriter) writeBlockDynamic(tokens *tokens, eof bool, input []byte, sync bool) {
		huffman_bit_writer.go#L770: func (w *huffmanBitWriter) fillTokens() {
		huffman_bit_writer.go#L787: func (w *huffmanBitWriter) indexTokens(t *tokens, filled bool) (numLiterals, numOffsets int) {
		huffman_bit_writer.go#L819: func (w *huffmanBitWriter) generate() {
		huffman_bit_writer.go#L826: func (w *huffmanBitWriter) writeTokens(tokens []token, leCodes, oeCodes []hcode) {
		huffman_bit_writer.go#L994: func (w *huffmanBitWriter) writeBlockHuff(eof bool, input []byte, sync bool) {
		stateless.go#L69: 	bw := bitWriterPool.Get().(*huffmanBitWriter)